home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap08 / dun8_1.txt next >
Encoding:
Text File  |  1997-12-18  |  518 b   |  24 lines

  1. <html>
  2. <head>
  3. <title>A Script!</title>
  4. </head>
  5. <script>
  6. <!-ù hide from old browsers --//
  7.  
  8.    //This line pops up a message box and
  9.    //serves as a frightening reminder of
  10.    //just how far we've come.
  11.    alert('My First Script!');
  12.  
  13.    //changes the statues bar in your Web
  14.    //browser from the old "document done." To
  15.    //a more personal note.
  16.    window.status = ('My First Page With a Script!');
  17.  
  18. //--- end hiding -->
  19. </script>
  20. <body>
  21. <h1>Got It?</h1>
  22. </body>
  23. </html>
  24.